home *** CD-ROM | disk | FTP | other *** search
- ╔═ Qedit Help ══════════════ for Turbo C ══════════════════════════════════════╗
- ║ ║
- ║ ┌ Block ─────────────┐ ┌ Files ─────────────────────┐ ┌ Windows ──────────┐ ║
- ║ │CopyOverBlock @Z│ │change filename @o, ^kf │ │close window ^oc │ ║
- ║ │CopyBlock @C│ │edit file @e, ^ke │ │grow window ^og │ ║
- ║ │DropAnchor @A│ │exit ^kd │ │split window ^oh │ ║
- ║ │MarkBlockBegin f7│ │file ^kx │ │next window ^on │ ║
- ║ │MarkBlockEnd f8│ │global exit @x │ │one window ^oo │ ║
- ║ │MarkLine @L│ │next file @n, ^kn │ │prev window ^op │ ║
- ║ │MoveBlock @M│ │os --- │ │shrink window ^os │ ║
- ║ │ReadBlock @R│ │pquit ^kq │ │zoom window ^oz │ ║
- ║ │UnmarkBlock @U│ │prev file ^kp │ └───────────────────┘ ║
- ║ │WriteBlock @W│ │save file ^ks │ ║
- ║ │MarkColumn @K│ └────────────────────────────┘ ┌─Cursor ────────────┐ ║
- ║ │DeleteBlock @G│ │goto block beg ^qb │ ║
- ║ └────────────────────┘ ┌ Search/Replace ─┐ │goto block end ^qk │ ║
- ║ │find ^qf │ │top of file ^PgUp │ ║
- ║ ┌ Edit ────────────────┐ │find replace ^qa │ │end of file ^PgDn │ ║
- ║ │add line f2 │ │match @f3 │ │goto line ^j │ ║
- ║ │DeleteBlock @G │ │repeat find ^l │ └────────────────────┘ ║
- ║ │DelLine @D │ └─────────────────┘ ║
- ║ │del rt word ^t │ ║
- ║ │DelToEol F6 │ ┌─── Misc ─────────────────────────────────────────┐║
- ║ │dup line f4 │ │ToggleBoxDraw shift F1 Turns line drawing on/off.│║
- ║ │insert line @f2 │ │ToggleBoxType alt F1 Select sing/doub/etc lines│║
- ║ │join line @j │ │Literal Ctrl P ex: to place FF ^P^L │║
- ║ │Literal ^P │ │Macro Record Ctrl M Turns macro record on/off.│║
- ║ │split line @s,^n│ │GetPrev Ctrl - Copies char above cursor. │║
- ║ │undo cursorline ^ql │ └──────────────────────────────────────────────────┘║
- ║ │unkill ^u │ ║
- ║ │Lower (cnvrt to) @2 │ ║
- ║ │Upper (cnvrt to) @1 │ ║
- ║ └──────────────────────┘ ║
- ║ ║
- ║ Function Keys (@ = Alt, ^ = Ctrl, $ = Shift) ║
- ║──────────────────────────────────────┬───────────────────────────────────────║
- ║ f1 - not defined - for quick macros │ ^f1 - EGA 43 line (toggle) ║
- ║ f2 - add line │ ^f2 - ║
- ║ f3 - │ ^f3 - ║
- ║ f4 - dup line │ ^f4 - ║
- ║ f5 - make top of screen │ ^f5 - ║
- ║ f6 - delete to end of line │ ^f6 - ║
- ║ f7 - mark block begin │ ^f7 - ║
- ║ f8 - mark block end │ ^f8 - ║
- ║ f9 - TLINK (to .EXE) │ ^f9 - ║
- ║ f10 - TASM │ ^f10 - ║
- ║──────────────────────────────────────┼───────────────────────────────────────║
- ║ @f1 - select line dwg (single/doub) │ $f1 - box draw (toggle) ║
- ║ @f2 - insert line │ $f2 - ║
- ║ @f3 - match │ $f3 - ║
- ║ @f4 - │ $f4 - ║
- ║ @f5 - screen left │ $f5 - make center of screen ║
- ║ @f6 - screen right │ $f6 - ║
- ║ @f7 - │ $f7 - shift left ║
- ║ @f8 - │ $f8 - shift right ║
- ║ @f9 - TLINK (to .COM) │ $f9 - ║
- ║ @f10 - show entry screen │ $f10 - ║
- ╠══════════════════════════════════════╧═══════════════════════════════════════╣
- ║ ┌──── printf format commands ─────┐ ┌──── colors ─────┐ ┌ bitwise operators ┐║
- ║ │ %c A single character │ │BLACK 0 │ │& AND │║
- ║ │ %d Decimal │ │BLUE 1 │ │| OR │║
- ║ │ %i Decimal │ │GREEN 2 │ │^ XOR │║
- ║ │ %e Scientific notation │ │CYAN 3 │ │~ NOT │║
- ║ │ %f Decimal floating-point │ │RED 4 │ │>> Shift Right │║
- ║ │ %g Uses shorter of %e or %f │ │MAGENTA 5 │ │<< Shift Left │║
- ║ │ %o Octal │ │BROWN 6 │ └───────────────────┘║
- ║ │ %s String of characters │ │LIGHTGRAY 7 │ ║
- ║ │ %u Unsigned decimal │ │DARKGRAY 8 │ ┌ arithmetic oper. ─┐║
- ║ │ %x Hexadecimal │ │LIGHTBLUE 9 │ │- Subtraction │║
- ║ │ %% Prints a % sign │ │LIGHTGREEN 10 │ │+ Addition │║
- ║ │ %p Displays a pointer │ │LIGHTCYAN 11 │ │* Multiplication │║
- ║ │ %n The associated argument │ │LIGHTRED 12 │ │/ Division │║
- ║ │ will be an integer pointer │ │LIGHTMAGENTA 13 │ │% Modulo division │║
- ║ │ into which is placed the │ │YELLOW 14 │ │-- Decrement │║
- ║ │ number of characters writ- │ │WHITE 15 │ │++ Increment │║
- ║ │ ten so far. │ │BLINK 128 │ └───────────────────┘║
- ║ └─────────────────────────────────┘ └─────────────────┘ ║
- ║ ║
- ║ ┌ relational operators ─┐ ┌ backslash codes ────┐ ║
- ║ │> Greater than │ │\b Backspace │ ║
- ║ │>= Greater or equal │ │\n Newline │ ║
- ║ │< Less than │ │\r Carriage return │ ║
- ║ │<= Less or equal │ │\t Horizontal tab │ ║
- ║ │== Equal │ │\" Double quote mark│ ║
- ║ │!= Not equal │ │\' Single quote mark│ ║
- ║ └───────────────────────┘ │\0 Null │ ║
- ║ │\\ Backslash │ ║
- ║ ┌ logical operators ────┐ │\v Vertical tab │ ║
- ║ │&& And │ │\a Alert │ ║
- ║ │|| Or │ │\o Octal constant │ ║
- ║ │! Not │ │\x Hex constant │ ║
- ║ └───────────────────────┘ └─────────────────────┘ ║
- ║ ║
- ║ ║
- ╚══════════════════════════════════════════════════════════════════════════════╝
-